home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / program / n_b_v203.zip / APRINT.DMO < prev    next >
Text File  |  1996-07-04  |  3KB  |  57 lines

  1. $if 0
  2.     ┌──────────────────────────╖                        PowerBASIC v3.20
  3.  ┌──┤          DASoft          ╟──────────────────────┬──────────────────╖
  4.  │  ├──────────────────────────╢    Copyright 1995    │ DATE: 1995-10-01 ╟─╖
  5.  │  │ FILE NAME   APRINT  .DMO ║          by          ╘════════════════─ ║ ║
  6.  │  │                          ║  Don Schullian, Jr.                     ║ ║
  7.  │  ╘══════════════════════════╝                                         ║ ║
  8.  │ A license is hereby granted to the holder to use this source code in  ║ ║
  9.  │ any program, commercial or otherwise,  without receiving the express  ║ ║
  10.  │ permission of the copyright holder and without paying any royalties,  ║ ║
  11.  │ as long as this code is not distributed in any compilable format.     ║ ║
  12.  │  IE: source code files, PowerBASIC Unit files, and printed listings   ║ ║
  13.  ╘═╤═════════════════════════════════════════════════════════════════════╝ ║
  14.    │                ....................................                   ║
  15.    ╘═══════════════════════════════════════════════════════════════════════╝
  16. $endif
  17.  
  18. $STRING 8                   ' for big ansi files
  19. $INCLUDE "DAS-NB01.INC"
  20. $INCLUDE "DAS-NBT0.INC"     ' use "DAS-NBT0.INC" for mouse support
  21. $INCLUDE "DAS-NBT1.INC"
  22. COLOR 7, 0
  23. CLS
  24. ? "┌────────────────────────────────────────────────────────────────────────
  25. ? "│  Aprint     ( Ansi$ )
  26. ? "│ fAprintSet? ()
  27. ? "├─────────────────────────────────────────────────────────────────────────────
  28. ? "│ For quick, easy printing of ANSI encoded strings. ANSI.SYS needs not be
  29. ? "│ present but your program should make a one-time call to fAprintSet? to
  30. ? "│ insure that all internal variables are/have been set. fAprintSet? also
  31. ? "│ returns the current screen mode in case your program needs to check this.
  32. ? "│ The call to Aprint is then simple enough as printing starts at the top/left
  33. ? "│ of the screen for all strings. All ANSI escape codes are supported.
  34. ? "├─────────────────────────────────────────────────────────────────────────────
  35. ? "│ No mouse support has been added to this routine.
  36. ? "│ You can use MouseOFF and MouseON before/after the call.
  37. ? "└─────────────────────────────────────────────────────────────────────────────
  38.  
  39. fAprintSet                               ' set environment just in case
  40. AnsiFile$ = "DMO\APRINT.ANS"             ' fix this if necessary
  41. IF DIR$( AnsiFile$ ) = "" THEN           ' just a quick check if the file
  42.   PRINT "SORRY, CAN'T FIND APRINT.ANS"   ' is there or not
  43.   END                                    '
  44. END IF                                   '
  45.                                          '
  46. OPEN "B", #1, AnsiFile$                  ' open the file
  47.   GET$ #1, LOF(1), Ansi$                 ' read the whole thing in
  48. CLOSE                                    ' close the file
  49.  
  50.  
  51. Aprint "53HmPress any keym to continue"
  52. fAnyKey
  53. CLS
  54.  
  55.                                          '
  56. Aprint Ansi$                             ' print the screen
  57. Tprint 25, 71, "Thank You!", 15